home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot / h / token.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-05-13  |  329 b   |  22 lines

  1.  
  2. /*    @(#)token.h 1.1 86/09/27 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. extern char    **token;
  9. extern char    *tokens[128];
  10. extern char    *testname;
  11.  
  12. #define NULL        ((char *) 0)
  13. #define DEFAULT        '.'
  14. #define FOREVER        '*'
  15. #define SEPARATOR    ';'
  16.  
  17. struct menu {
  18.     char    t_char, *t_name;
  19.     int    (*t_call)();
  20.     char    *t_help;
  21. };
  22.